home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #15 / Monster Media Number 15 (Monster Media)(July 1996).ISO / netmail / nwrth210.zip / PGPSHELL.BAT < prev    next >
DOS Batch File  |  1995-03-11  |  484b  |  32 lines

  1. @echo off
  2. cls
  3. echo   D  Decrypt
  4. echo   E  Encrypt
  5. echo   C  Clearsign
  6. echo   N  Normal
  7. echo.
  8. choice /c:decn /t:n,5
  9. if errorlevel 4 goto Qedit
  10. if errorlevel 3 goto Clearsign
  11. if errorlevel 2 goto Encrypt
  12. if errorlevel 1 goto Decrypt
  13.                 
  14. :Qedit
  15. c:\qedit\q.exe %1
  16. goto End
  17.         
  18. :Decrypt
  19. c:\pgp\pgs.exe /M /D %1
  20. goto End
  21.  
  22. :Encrypt
  23. c:\pgp\pgs.exe /M /E %1
  24. goto End
  25.  
  26. :Clearsign
  27. c:\qedit\q.exe %1
  28. c:\pgp\pgs.exe /M /C %1
  29. goto End
  30.         
  31. :End
  32.